home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / testcgi_xss.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  57 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if (description)
  6. {
  7.  script_id(11610);
  8.  script_bugtraq_id(7214);
  9.  script_version ("$Revision: 1.4 $");
  10.  
  11.  script_name(english:"testcgi.exe Cross Site Scripting");
  12.  desc["english"] = "
  13. The remote host has a CGI called 'testcgi.exe' installed
  14. under /cgi-bin which is vulnerable to a cross site scripting
  15. issue.
  16.  
  17.  
  18. Solution: Upgrade to a newer version.
  19. Risk factor : Low";
  20.  
  21.  script_description(english:desc["english"]);
  22.  script_summary(english:"Determine if testcgi.exe is vulnerable to xss");
  23.  script_category(ACT_GATHER_INFO);
  24.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  25.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  26.  script_dependencie("find_service.nes", "no404.nasl", "cross_site_scripting.nasl");
  27.  script_require_ports("Services/www", 80);
  28.  exit(0);
  29. }
  30.  
  31. include("http_func.inc");
  32. include("http_keepalive.inc");
  33.  
  34. port = get_http_port(default:80);
  35.  
  36. if(!get_port_state(port))exit(0);
  37. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  38.  
  39. dir = make_list(cgi_dirs());
  40.         
  41.  
  42.  
  43. foreach d (dir)
  44. {
  45.  url = string(d, '/testcgi.exe?<script>x</script>');
  46.  req = http_get(item:url, port:port);
  47.  buf = http_keepalive_send_recv(port:port, data:req);
  48.  if( buf == NULL ) exit(0);
  49.  
  50.  if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:buf) &&
  51.     "<script>x</script>" >< buf)
  52.    {
  53.     security_warning(port);
  54.     exit(0);
  55.    }
  56. }
  57.